body {
  margin: 0;
  background-image: url("../Images/background2.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.paragraphe {
  text-align: center;
  margin: 0 auto 30px;
  max-width: 800px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.page-title {
  text-align: center;
  font-size: 3.5rem;
  color: #fff;
  margin-top: 40px;
  font-family: Simpsons;
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.7),
    0 0 2px rgba(255, 255, 255, 0.2);
}

.subtitle {
  text-align: center;
  font-size: 2rem;
  margin: 40px 0 20px;
  color: #fff;
  text-shadow:
    1px 1px 3px rgba(0, 0, 0, 0.7),
    0 0 2px rgba(255, 255, 255, 0.1);
}


.links-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px 40px;
}

.links-container a {
  display: flex; /* flexbox pour centrage */
  align-items: center; /* centre verticalement */
  justify-content: center; /* centre horizontalement */
  padding: 16px 20px;
  width: 320px;
  min-height: 80px; /* taille minimale pour bien respirer */
  background-color: #ffffff;
  color: #111111;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  text-align: center;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background-color 0.3s ease;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3); /* léger contour blanc */
}

.links-container a:hover {
  background-color: #eeeeee;
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}


